home *** CD-ROM | disk | FTP | other *** search
/ QuickTime VR Showcase / QuickTime VR Showcase.iso / 3rd Parties / Software / Apple / AMT 2.1 New Features Demo / SOURCES / oAudio_2_9.k < prev    next >
Encoding:
Text File  |  1996-12-21  |  18.4 KB  |  912 lines  |  [TEXT/MPS ]

  1. object oAudio_2_9 is cDefaultContainer
  2. with
  3.     Binder is oBinder;
  4.     Label is -1;
  5.     Items is [
  6.         oKeyboard_Volume__9_51,
  7.         oClick_Sound__Up__9_2,
  8.         oClick_Sound__down__9_3,
  9.         oAU_BCK2_PIC_9_15,
  10.         oArrow_Right_Yellow_Highligh_9_4,
  11.         oArrow_Left_Yellow_Highlight_9_5,
  12.         oExit_Yellow_Highlight_9_6,
  13.         oExplain_Yellow_Highlight_9_30,
  14.         oMenu_Yellow_Highlight_9_8,
  15.         oArrow_Left_Inverse_9_9,
  16.         oArrow_Right_Inverse_9_10,
  17.         oExit_Inverse_9_11,
  18.         oExplain_Inverse_9_12,
  19.         oMenu_Inverse_9_13,
  20.         oAudio_CD_9_16,
  21.         oAU_MINUS_PIC_9_31,
  22.         oAU_PLUS_PIC_9_32,
  23.         oAU_STOP_PIC_9_33,
  24.         oAU_PLAY_PIC_9_34,
  25.         oAU_2NIN_PIC_9_38,
  26.         oAU_2EIG_PIC_9_35,
  27.         oAU_2SEV_PIC_9_40,
  28.         oAU_2SIX_PIC_9_45,
  29.         oAU_2FIV_PIC_9_36,
  30.         oAU_2FOU_PIC_9_37,
  31.         oAU_2THR_PIC_9_43,
  32.         oAU_2TWO_PIC_9_44,
  33.         oAU_2ONE_PIC_9_39,
  34.         oAU_HLP2_PIC_9_46
  35.     ];
  36. end;
  37.  
  38.  
  39. object oKeyboard_Volume__9_51 is cKeyboardHandler
  40. with
  41.     Behavior is cDefaultBehavior
  42.     has
  43.         KeyDown(theTarget, theKey)
  44.         use
  45.             KeyMatch;
  46.             
  47.             do
  48.                 KeyMatch := theKey = '-';
  49.                 if KeyMatch then
  50.                     theTarget.DoDefaultMethod := false;
  51.                 
  52.                     oSoundVolume.StepIndexBy(-1);
  53.                 end;
  54.                 KeyMatch := theKey = '=';
  55.                 if KeyMatch then
  56.                     theTarget.DoDefaultMethod := false;
  57.                 
  58.                     oSoundVolume.StepIndexBy(1);
  59.                 end;
  60.                 KeyMatch := theKey = '+';
  61.                 if KeyMatch then
  62.                     theTarget.DoDefaultMethod := false;
  63.                 
  64.                     oSoundVolume.StepIndexBy(1);
  65.                 end;
  66.             end;
  67.         
  68.     with
  69.         Enabled is true; Shown is false; 
  70.         X is 30; Y is 24; Width is 0; Height is 0;
  71.     end;
  72. end;
  73.  
  74.  
  75. object oClick_Sound__Up__9_2 is cSoundHandler
  76. with
  77.     Supplier is oS3_2clk_WAV;
  78.     Behavior is cDefaultBehavior
  79.     has
  80.     with
  81.         Enabled is true; Shown is true; 
  82.         X is 247; Y is 128; Width is 32; Height is 24;
  83.     end;
  84. end;
  85.  
  86.  
  87. object oClick_Sound__down__9_3 is cSoundHandler
  88. with
  89.     Supplier is oS3_clk_WAV;
  90.     Behavior is cDefaultBehavior
  91.     has
  92.     with
  93.         Enabled is true; Shown is true; 
  94.         X is 304; Y is 228; Width is 32; Height is 24;
  95.     end;
  96. end;
  97.  
  98.  
  99. object oAU_BCK2_PIC_9_15 is cPictureHandler
  100. with
  101.     Duration is -1;
  102.     Supplier is oAU_BCK2_PIC;
  103.     Behavior is cDefaultBehavior
  104.     has
  105.     with
  106.         Enabled is false; Shown is true; 
  107.         X is 0; Y is 0; Width is 640; Height is 480;
  108.     end;
  109. end;
  110.  
  111.  
  112. object oArrow_Right_Yellow_Highligh_9_4 is cPictureHandler
  113. with
  114.     Duration is -1;
  115.     Supplier is oS2_ALYH_PIC;
  116.     Behavior is cDefaultBehavior
  117.     has
  118.         Offscreen(theTarget)
  119.             do
  120.                 theTarget.Show(false);
  121.             end;
  122.         
  123.         MouseEnter(theTarget, theX, theY)
  124.             do
  125.                 theTarget.Show(true);
  126.             end;
  127.         
  128.         MouseLeave(theTarget, theX, theY)
  129.             do
  130.                 theTarget.Show(false);
  131.             end;
  132.         
  133.         MouseDown(theTarget, theX, theY)
  134.             do
  135.                 theTarget.Show(false);
  136.                 oArrow_Right_Inverse_9_10.Show(true);
  137.                 oBinder.Refresh();
  138.                 oClick_Sound__down__9_3.Run(true);
  139.                 -- Turn off the spining cursor, if there is one
  140.                 if oBinder.MouseSpin<>void then
  141.                     if oBinder.MouseSpin.IsRunning() then
  142.                         oBinder.MouseSpin.Stop();
  143.                     end;
  144.                     oBinder.MouseSpin := void;
  145.                 end;
  146.                 theTarget.Container.OverrideCursor := true;
  147.                 oBinder.MouseSpin := oHandSpin;
  148.                 if (oBinder.MouseSpin @ 1).Data=void then
  149.                     oBinder.MouseSpin.EachUp(Load);
  150.                 end;
  151.                 if not oBinder.MouseSpin.IsRunning() then
  152.                     oBinder.MouseSpin.Start();
  153.                 end;
  154.             end;
  155.         
  156.         MouseUp(theTarget, theX, theY)
  157.             do
  158.                 theTarget.Show(true);
  159.                 oArrow_Right_Inverse_9_10.Show(false);
  160.                 -- Turn off the spining cursor, if there is one
  161.                 if oBinder.MouseSpin<>void then
  162.                     if oBinder.MouseSpin.IsRunning() then
  163.                         oBinder.MouseSpin.Stop();
  164.                     end;
  165.                     oBinder.MouseSpin := void;
  166.                 end;
  167.                 theTarget.Container.OverrideCursor := false;
  168.                 oBinder.Refresh();
  169.                 oClick_Sound__Up__9_2.Run(true);
  170.                 oBinder.Goto(oMain_Menu_1);
  171.                 oBinder.SetTransition(oIrisOpen, 30);
  172.             end;
  173.         
  174.     with
  175.         Enabled is true; Shown is true; 
  176.         X is 473; Y is 426; Width is 55; Height is 54;
  177.     end;
  178. end;
  179.  
  180.  
  181. object oArrow_Left_Yellow_Highlight_9_5 is cPictureHandler
  182. with
  183.     Duration is -1;
  184.     Supplier is oS2_ARYH_PIC;
  185.     Behavior is cDefaultBehavior
  186.     has
  187.         Offscreen(theTarget)
  188.             do
  189.                 theTarget.Show(false);
  190.             end;
  191.         
  192.         MouseEnter(theTarget, theX, theY)
  193.             do
  194.                 theTarget.Show(true);
  195.             end;
  196.         
  197.         MouseLeave(theTarget, theX, theY)
  198.             do
  199.                 theTarget.Show(false);
  200.             end;
  201.         
  202.         MouseDown(theTarget, theX, theY)
  203.             do
  204.                 theTarget.Show(false);
  205.                 oArrow_Left_Inverse_9_9.Show(true);
  206.                 -- Turn off the spining cursor, if there is one
  207.                 if oBinder.MouseSpin<>void then
  208.                     if oBinder.MouseSpin.IsRunning() then
  209.                         oBinder.MouseSpin.Stop();
  210.                     end;
  211.                     oBinder.MouseSpin := void;
  212.                 end;
  213.                 theTarget.Container.OverrideCursor := true;
  214.                 oBinder.MouseSpin := oHandSpin;
  215.                 if (oBinder.MouseSpin @ 1).Data=void then
  216.                     oBinder.MouseSpin.EachUp(Load);
  217.                 end;
  218.                 if not oBinder.MouseSpin.IsRunning() then
  219.                     oBinder.MouseSpin.Start();
  220.                 end;
  221.                 oBinder.Refresh();
  222.                 oClick_Sound__down__9_3.Run(true);
  223.             end;
  224.         
  225.         MouseUp(theTarget, theX, theY)
  226.             do
  227.                 theTarget.Show(true);
  228.                 oArrow_Left_Inverse_9_9.Show(false);
  229.                 -- Turn off the spining cursor, if there is one
  230.                 if oBinder.MouseSpin<>void then
  231.                     if oBinder.MouseSpin.IsRunning() then
  232.                         oBinder.MouseSpin.Stop();
  233.                     end;
  234.                     oBinder.MouseSpin := void;
  235.                 end;
  236.                 theTarget.Container.OverrideCursor := false;
  237.                 oBinder.Refresh();
  238.                 oClick_Sound__Up__9_2.Run(true);
  239.                 oBinder.Goto(oAudio_1_8);
  240.                 oBinder.SetTransition(oIrisOpen, 30);
  241.             end;
  242.         
  243.     with
  244.         Enabled is true; Shown is true; 
  245.         X is 377; Y is 426; Width is 60; Height is 54;
  246.     end;
  247. end;
  248.  
  249.  
  250. object oExit_Yellow_Highlight_9_6 is cPictureHandler
  251. with
  252.     Duration is -1;
  253.     Supplier is oS2_ETYH_PIC;
  254.     Behavior is cDefaultBehavior
  255.     has
  256.         Offscreen(theTarget)
  257.             do
  258.                 theTarget.Show(false);
  259.             end;
  260.         
  261.         MouseEnter(theTarget, theX, theY)
  262.             do
  263.                 theTarget.Show(true);
  264.             end;
  265.         
  266.         MouseLeave(theTarget, theX, theY)
  267.             do
  268.                 theTarget.Show(false);
  269.             end;
  270.         
  271.         MouseDown(theTarget, theX, theY)
  272.             do
  273.                 theTarget.Show(false);
  274.                 oExit_Inverse_9_11.Show(true);
  275.                 -- Turn off the spining cursor, if there is one
  276.                 if oBinder.MouseSpin<>void then
  277.                     if oBinder.MouseSpin.IsRunning() then
  278.                         oBinder.MouseSpin.Stop();
  279.                     end;
  280.                     oBinder.MouseSpin := void;
  281.                 end;
  282.                 theTarget.Container.OverrideCursor := true;
  283.                 oBinder.MouseSpin := oHandSpin;
  284.                 if (oBinder.MouseSpin @ 1).Data=void then
  285.                     oBinder.MouseSpin.EachUp(Load);
  286.                 end;
  287.                 if not oBinder.MouseSpin.IsRunning() then
  288.                     oBinder.MouseSpin.Start();
  289.                 end;
  290.                 oBinder.Refresh();
  291.                 oClick_Sound__down__9_3.Run(true);
  292.             end;
  293.         
  294.         MouseUp(theTarget, theX, theY)
  295.             do
  296.                 theTarget.Show(true);
  297.                 oExit_Inverse_9_11.Show(false);
  298.                 -- Turn off the spining cursor, if there is one
  299.                 if oBinder.MouseSpin<>void then
  300.                     if oBinder.MouseSpin.IsRunning() then
  301.                         oBinder.MouseSpin.Stop();
  302.                     end;
  303.                     oBinder.MouseSpin := void;
  304.                 end;
  305.                 theTarget.Container.OverrideCursor := false;
  306.                 oBinder.Refresh();
  307.                 oClick_Sound__Up__9_2.Run(true);
  308.                 oBinder.Quit();
  309.             end;
  310.         
  311.     with
  312.         Enabled is true; Shown is true; 
  313.         X is 528; Y is 426; Width is 111; Height is 54;
  314.     end;
  315. end;
  316.  
  317.  
  318. object oExplain_Yellow_Highlight_9_30 is cPictureHandler
  319. with
  320.     Duration is -1;
  321.     Supplier is oS2_EXYH_PIC;
  322.     Behavior is cDefaultBehavior
  323.     has
  324.         Offscreen(theTarget)
  325.             do
  326.                 theTarget.Show(false);
  327.             end;
  328.         
  329.         MouseEnter(theTarget, theX, theY)
  330.             do
  331.                 theTarget.Show(true);
  332.                 -- Turn off the spining cursor, if there is one
  333.                 if oBinder.MouseSpin<>void then
  334.                     if oBinder.MouseSpin.IsRunning() then
  335.                         oBinder.MouseSpin.Stop();
  336.                     end;
  337.                     oBinder.MouseSpin := void;
  338.                 end;
  339.                 theTarget.Container.OverrideCursor := true;
  340.                 if oQueryCursor=void then
  341.                     oQueryCursor.Load();
  342.                 end;
  343.                 oQueryCursor.Set();
  344.             end;
  345.         
  346.         MouseLeave(theTarget, theX, theY)
  347.             do
  348.                 theTarget.Show(false);
  349.                 -- Turn off the spining cursor, if there is one
  350.                 if oBinder.MouseSpin<>void then
  351.                     if oBinder.MouseSpin.IsRunning() then
  352.                         oBinder.MouseSpin.Stop();
  353.                     end;
  354.                     oBinder.MouseSpin := void;
  355.                 end;
  356.                 theTarget.Container.OverrideCursor := false;
  357.             end;
  358.         
  359.         MouseDown(theTarget, theX, theY)
  360.             do
  361.                 theTarget.Show(false);
  362.                 oExplain_Inverse_9_12.Show(true);
  363.                 oBinder.Refresh();
  364.                 oClick_Sound__down__9_3.Run(true);
  365.                 oAU_HLP2_PIC_9_46.Show(not oAU_HLP2_PIC_9_46.IsShown());
  366.                 oAU_MINUS_PIC_9_31.Enable(not oAU_MINUS_PIC_9_31.IsEnabled());
  367.                 oAU_PLUS_PIC_9_32.Enable(not oAU_PLUS_PIC_9_32.IsEnabled());
  368.                 oAU_STOP_PIC_9_33.Enable(not oAU_STOP_PIC_9_33.IsEnabled());
  369.                 oAU_PLAY_PIC_9_34.Enable(not oAU_PLAY_PIC_9_34.IsEnabled());
  370.                 oAU_2NIN_PIC_9_38.Enable(not oAU_2NIN_PIC_9_38.IsEnabled());
  371.                 oAU_2EIG_PIC_9_35.Enable(not oAU_2EIG_PIC_9_35.IsEnabled());
  372.                 oAU_2SEV_PIC_9_40.Enable(not oAU_2SEV_PIC_9_40.IsEnabled());
  373.                 oAU_2SIX_PIC_9_45.Enable(not oAU_2SIX_PIC_9_45.IsEnabled());
  374.                 oAU_2FIV_PIC_9_36.Enable(not oAU_2FIV_PIC_9_36.IsEnabled());
  375.                 oAU_2FOU_PIC_9_37.Enable(not oAU_2FOU_PIC_9_37.IsEnabled());
  376.                 oAU_2THR_PIC_9_43.Enable(not oAU_2THR_PIC_9_43.IsEnabled());
  377.                 oAU_2TWO_PIC_9_44.Enable(not oAU_2TWO_PIC_9_44.IsEnabled());
  378.                 oAU_2ONE_PIC_9_39.Enable(not oAU_2ONE_PIC_9_39.IsEnabled());
  379.             end;
  380.         
  381.         MouseUp(theTarget, theX, theY)
  382.             do
  383.                 theTarget.Show(true);
  384.                 oExplain_Inverse_9_12.Show(false);
  385.                 oBinder.Refresh();
  386.                 oClick_Sound__Up__9_2.Run(true);
  387.             end;
  388.         
  389.     with
  390.         Enabled is true; Shown is true; 
  391.         X is 289; Y is 427; Width is 87; Height is 53;
  392.     end;
  393. end;
  394.  
  395.  
  396. object oMenu_Yellow_Highlight_9_8 is cPictureHandler
  397. with
  398.     Duration is -1;
  399.     Supplier is oS2_MNUYH_PIC;
  400.     Behavior is cDefaultBehavior
  401.     has
  402.         Offscreen(theTarget)
  403.             do
  404.                 theTarget.Show(false);
  405.             end;
  406.         
  407.         MouseEnter(theTarget, theX, theY)
  408.             do
  409.                 theTarget.Show(true);
  410.             end;
  411.         
  412.         MouseLeave(theTarget, theX, theY)
  413.             do
  414.                 theTarget.Show(false);
  415.             end;
  416.         
  417.         MouseDown(theTarget, theX, theY)
  418.             do
  419.                 theTarget.Show(false);
  420.                 oMenu_Inverse_9_13.Show(true);
  421.                 -- Turn off the spining cursor, if there is one
  422.                 if oBinder.MouseSpin<>void then
  423.                     if oBinder.MouseSpin.IsRunning() then
  424.                         oBinder.MouseSpin.Stop();
  425.                     end;
  426.                     oBinder.MouseSpin := void;
  427.                 end;
  428.                 theTarget.Container.OverrideCursor := true;
  429.                 oBinder.MouseSpin := oHandSpin;
  430.                 if (oBinder.MouseSpin @ 1).Data=void then
  431.                     oBinder.MouseSpin.EachUp(Load);
  432.                 end;
  433.                 if not oBinder.MouseSpin.IsRunning() then
  434.                     oBinder.MouseSpin.Start();
  435.                 end;
  436.                 oBinder.Refresh();
  437.                 oClick_Sound__down__9_3.Run(true);
  438.             end;
  439.         
  440.         MouseUp(theTarget, theX, theY)
  441.             do
  442.                 theTarget.Show(true);
  443.                 oMenu_Inverse_9_13.Show(false);
  444.                 -- Turn off the spining cursor, if there is one
  445.                 if oBinder.MouseSpin<>void then
  446.                     if oBinder.MouseSpin.IsRunning() then
  447.                         oBinder.MouseSpin.Stop();
  448.                     end;
  449.                     oBinder.MouseSpin := void;
  450.                 end;
  451.                 theTarget.Container.OverrideCursor := false;
  452.                 oBinder.Refresh();
  453.                 oClick_Sound__Up__9_2.Run(true);
  454.                 oBinder.Goto(oMain_Menu_1);
  455.             end;
  456.         
  457.     with
  458.         Enabled is true; Shown is true; 
  459.         X is 163; Y is 427; Width is 126; Height is 53;
  460.     end;
  461. end;
  462.  
  463.  
  464. object oArrow_Left_Inverse_9_9 is cPictureHandler
  465. with
  466.     Duration is -1;
  467.     Supplier is oS2_ALI_PIC;
  468.     Behavior is cDefaultBehavior
  469.     has
  470.         Offscreen(theTarget)
  471.             do
  472.                 theTarget.Show(false);
  473.                 theTarget.Enable(false);
  474.             end;
  475.         
  476.     with
  477.         Enabled is true; Shown is true; 
  478.         X is 381; Y is 441; Width is 51; Height is 40;
  479.     end;
  480. end;
  481.  
  482.  
  483. object oArrow_Right_Inverse_9_10 is cPictureHandler
  484. with
  485.     Duration is -1;
  486.     Supplier is oS2_ARI_PIC;
  487.     Behavior is cDefaultBehavior
  488.     has
  489.         Offscreen(theTarget)
  490.             do
  491.                 theTarget.Show(false);
  492.                 theTarget.Enable(false);
  493.             end;
  494.         
  495.     with
  496.         Enabled is true; Shown is true; 
  497.         X is 477; Y is 438; Width is 50; Height is 42;
  498.     end;
  499. end;
  500.  
  501.  
  502. object oExit_Inverse_9_11 is cPictureHandler
  503. with
  504.     Duration is -1;
  505.     Supplier is oS2_ETI_PIC;
  506.     Behavior is cDefaultBehavior
  507.     has
  508.         Offscreen(theTarget)
  509.             do
  510.                 theTarget.Show(false);
  511.                 theTarget.Enable(false);
  512.             end;
  513.         
  514.     with
  515.         Enabled is true; Shown is true; 
  516.         X is 528; Y is 439; Width is 112; Height is 42;
  517.     end;
  518. end;
  519.  
  520.  
  521. object oExplain_Inverse_9_12 is cPictureHandler
  522. with
  523.     Duration is -1;
  524.     Supplier is oS2_EXI_PIC;
  525.     Behavior is cDefaultBehavior
  526.     has
  527.         Offscreen(theTarget)
  528.             do
  529.                 theTarget.Show(false);
  530.                 theTarget.Enable(false);
  531.             end;
  532.         
  533.     with
  534.         Enabled is true; Shown is true; 
  535.         X is 291; Y is 438; Width is 87; Height is 43;
  536.     end;
  537. end;
  538.  
  539.  
  540. object oMenu_Inverse_9_13 is cPictureHandler
  541. with
  542.     Duration is -1;
  543.     Supplier is oS2_MNUI_PIC;
  544.     Behavior is cDefaultBehavior
  545.     has
  546.         Offscreen(theTarget)
  547.             do
  548.                 theTarget.Show(false);
  549.                 theTarget.Enable(false);
  550.             end;
  551.         
  552.     with
  553.         Enabled is true; Shown is true; 
  554.         X is 167; Y is 438; Width is 123; Height is 43;
  555.     end;
  556. end;
  557.  
  558.  
  559. object oAudio_CD_9_16 is cAudioCDHandler
  560. with
  561.     Behavior is cDefaultBehavior
  562.     has
  563.         Onscreen(theTarget)
  564.             do
  565.                 oAudio_CD_9_16.Run(true);
  566.             end;
  567.         
  568.     with
  569.         Enabled is true; Shown is true; 
  570.         X is 0; Y is 0; Width is 27; Height is 22;
  571.     end;
  572. end;
  573.  
  574.  
  575. object oAU_MINUS_PIC_9_31 is cPictureHandler
  576. with
  577.     Duration is -1;
  578.     Supplier is oAU_MINUS_PIC;
  579.     Behavior is cDefaultBehavior
  580.     has
  581.         MouseUp(theTarget, theX, theY)
  582.             do
  583.                 oSoundVolume.StepIndexBy(-1);
  584.                 theTarget.Show(false);
  585.                 oBinder.Refresh();
  586.             end;
  587.         
  588.         MouseDown(theTarget, theX, theY)
  589.             do
  590.                 theTarget.Show(true);
  591.             end;
  592.         
  593.     with
  594.         Enabled is true; Shown is false; 
  595.         X is 265; Y is 301; Width is 31; Height is 38;
  596.     end;
  597. end;
  598.  
  599.  
  600. object oAU_PLUS_PIC_9_32 is cPictureHandler
  601. with
  602.     Duration is -1;
  603.     Supplier is oAU_PLUS_PIC;
  604.     Behavior is cDefaultBehavior
  605.     has
  606.         MouseUp(theTarget, theX, theY)
  607.             do
  608.                 oSoundVolume.StepIndexBy(1);
  609.                 theTarget.Show(false);
  610.                 oBinder.Refresh();
  611.             end;
  612.         
  613.         MouseDown(theTarget, theX, theY)
  614.             do
  615.                 theTarget.Show(true);
  616.             end;
  617.         
  618.     with
  619.         Enabled is true; Shown is false; 
  620.         X is 507; Y is 301; Width is 30; Height is 38;
  621.     end;
  622. end;
  623.  
  624.  
  625. object oAU_STOP_PIC_9_33 is cPictureHandler
  626. with
  627.     Duration is -1;
  628.     Supplier is oAU_STOP_PIC;
  629.     Behavior is cDefaultBehavior
  630.     has
  631.         MouseDown(theTarget, theX, theY)
  632.             do
  633.                 theTarget.Show(true);
  634.             end;
  635.         
  636.         MouseUp(theTarget, theX, theY)
  637.             do
  638.                 theTarget.Show(false);
  639.                 oBinder.Refresh();
  640.                 oAudio_CD_9_16.Run(false);
  641.             end;
  642.         
  643.     with
  644.         Enabled is true; Shown is false; 
  645.         X is 400; Y is 301; Width is 106; Height is 38;
  646.     end;
  647. end;
  648.  
  649.  
  650. object oAU_PLAY_PIC_9_34 is cPictureHandler
  651. with
  652.     Duration is -1;
  653.     Supplier is oAU_PLAY_PIC;
  654.     Behavior is cDefaultBehavior
  655.     has
  656.         MouseDown(theTarget, theX, theY)
  657.             do
  658.                 theTarget.Show(true);
  659.             end;
  660.         
  661.         MouseUp(theTarget, theX, theY)
  662.             do
  663.                 theTarget.Show(false);
  664.                 oBinder.Refresh();
  665.                 oAudio_CD_9_16.Run(true);
  666.             end;
  667.         
  668.     with
  669.         Enabled is true; Shown is false; 
  670.         X is 295; Y is 301; Width is 105; Height is 38;
  671.     end;
  672. end;
  673.  
  674.  
  675. object oAU_2NIN_PIC_9_38 is cPictureHandler
  676. with
  677.     Duration is -1;
  678.     Supplier is oAU_2NIN_PIC;
  679.     Behavior is cDefaultBehavior
  680.     has
  681.         MouseUp(theTarget, theX, theY)
  682.             do
  683.                 theTarget.Show(false);
  684.                 oBinder.Refresh();
  685.                 oAudio_CD_9_16.Goto(9);
  686.             end;
  687.         
  688.         MouseDown(theTarget, theX, theY)
  689.             do
  690.                 theTarget.Show(true);
  691.             end;
  692.         
  693.     with
  694.         Enabled is true; Shown is false; 
  695.         X is 502; Y is 248; Width is 20; Height is 31;
  696.     end;
  697. end;
  698.  
  699.  
  700. object oAU_2EIG_PIC_9_35 is cPictureHandler
  701. with
  702.     Duration is -1;
  703.     Supplier is oAU_2EIG_PIC;
  704.     Behavior is cDefaultBehavior
  705.     has
  706.         MouseUp(theTarget, theX, theY)
  707.             do
  708.                 theTarget.Show(false);
  709.                 oBinder.Refresh();
  710.                 oAudio_CD_9_16.Goto(8);
  711.             end;
  712.         
  713.         MouseDown(theTarget, theX, theY)
  714.             do
  715.                 theTarget.Show(true);
  716.             end;
  717.         
  718.     with
  719.         Enabled is true; Shown is false; 
  720.         X is 481; Y is 248; Width is 20; Height is 31;
  721.     end;
  722. end;
  723.  
  724.  
  725. object oAU_2SEV_PIC_9_40 is cPictureHandler
  726. with
  727.     Duration is -1;
  728.     Supplier is oAU_2SEV_PIC;
  729.     Behavior is cDefaultBehavior
  730.     has
  731.         MouseUp(theTarget, theX, theY)
  732.             do
  733.                 theTarget.Show(false);
  734.                 oBinder.Refresh();
  735.                 oAudio_CD_9_16.Goto(7);
  736.             end;
  737.         
  738.         MouseDown(theTarget, theX, theY)
  739.             do
  740.                 theTarget.Show(true);
  741.             end;
  742.         
  743.     with
  744.         Enabled is true; Shown is false; 
  745.         X is 460; Y is 248; Width is 20; Height is 31;
  746.     end;
  747. end;
  748.  
  749.  
  750. object oAU_2SIX_PIC_9_45 is cPictureHandler
  751. with
  752.     Duration is -1;
  753.     Supplier is oAU_2SIX_PIC;
  754.     Behavior is cDefaultBehavior
  755.     has
  756.         MouseUp(theTarget, theX, theY)
  757.             do
  758.                 theTarget.Show(false);
  759.                 oBinder.Refresh();
  760.                 oAudio_CD_9_16.Goto(6);
  761.             end;
  762.         
  763.         MouseDown(theTarget, theX, theY)
  764.             do
  765.                 theTarget.Show(true);
  766.             end;
  767.         
  768.     with
  769.         Enabled is true; Shown is false; 
  770.         X is 438; Y is 248; Width is 20; Height is 31;
  771.     end;
  772. end;
  773.  
  774.  
  775. object oAU_2FIV_PIC_9_36 is cPictureHandler
  776. with
  777.     Duration is -1;
  778.     Supplier is oAU_2FIV_PIC;
  779.     Behavior is cDefaultBehavior
  780.     has
  781.         MouseUp(theTarget, theX, theY)
  782.             do
  783.                 theTarget.Show(false);
  784.                 oBinder.Refresh();
  785.                 oAudio_CD_9_16.Goto(5);
  786.             end;
  787.         
  788.         MouseDown(theTarget, theX, theY)
  789.             do
  790.                 theTarget.Show(true);
  791.             end;
  792.         
  793.     with
  794.         Enabled is true; Shown is false; 
  795.         X is 418; Y is 248; Width is 20; Height is 31;
  796.     end;
  797. end;
  798.  
  799.  
  800. object oAU_2FOU_PIC_9_37 is cPictureHandler
  801. with
  802.     Duration is -1;
  803.     Supplier is oAU_2FOU_PIC;
  804.     Behavior is cDefaultBehavior
  805.     has
  806.         MouseUp(theTarget, theX, theY)
  807.             do
  808.                 theTarget.Show(false);
  809.                 oBinder.Refresh();
  810.                 oAudio_CD_9_16.Goto(4);
  811.             end;
  812.         
  813.         MouseDown(theTarget, theX, theY)
  814.             do
  815.                 theTarget.Show(true);
  816.             end;
  817.         
  818.     with
  819.         Enabled is true; Shown is false; 
  820.         X is 397; Y is 248; Width is 20; Height is 31;
  821.     end;
  822. end;
  823.  
  824.  
  825. object oAU_2THR_PIC_9_43 is cPictureHandler
  826. with
  827.     Duration is -1;
  828.     Supplier is oAU_2THR_PIC;
  829.     Behavior is cDefaultBehavior
  830.     has
  831.         MouseUp(theTarget, theX, theY)
  832.             do
  833.                 theTarget.Show(false);
  834.                 oBinder.Refresh();
  835.                 oAudio_CD_9_16.Goto(3);
  836.             end;
  837.         
  838.         MouseDown(theTarget, theX, theY)
  839.             do
  840.                 theTarget.Show(true);
  841.             end;
  842.         
  843.     with
  844.         Enabled is true; Shown is false; 
  845.         X is 376; Y is 248; Width is 20; Height is 31;
  846.     end;
  847. end;
  848.  
  849.  
  850. object oAU_2TWO_PIC_9_44 is cPictureHandler
  851. with
  852.     Duration is -1;
  853.     Supplier is oAU_2TWO_PIC;
  854.     Behavior is cDefaultBehavior
  855.     has
  856.         MouseUp(theTarget, theX, theY)
  857.             do
  858.                 theTarget.Show(false);
  859.                 oBinder.Refresh();
  860.                 oAudio_CD_9_16.Goto(2);
  861.             end;
  862.         
  863.         MouseDown(theTarget, theX, theY)
  864.             do
  865.                 theTarget.Show(true);
  866.             end;
  867.         
  868.     with
  869.         Enabled is true; Shown is false; 
  870.         X is 357; Y is 248; Width is 20; Height is 31;
  871.     end;
  872. end;
  873.  
  874.  
  875. object oAU_2ONE_PIC_9_39 is cPictureHandler
  876. with
  877.     Duration is -1;
  878.     Supplier is oAU_2ONE_PIC;
  879.     Behavior is cDefaultBehavior
  880.     has
  881.         MouseUp(theTarget, theX, theY)
  882.             do
  883.                 theTarget.Show(false);
  884.                 oBinder.Refresh();
  885.                 oAudio_CD_9_16.Goto(1);
  886.             end;
  887.         
  888.         MouseDown(theTarget, theX, theY)
  889.             do
  890.                 theTarget.Show(true);
  891.             end;
  892.         
  893.     with
  894.         Enabled is true; Shown is false; 
  895.         X is 336; Y is 248; Width is 20; Height is 31;
  896.     end;
  897. end;
  898.  
  899.  
  900. object oAU_HLP2_PIC_9_46 is cPictureHandler
  901. with
  902.     Duration is -1;
  903.     Supplier is oAU_HLP2_PIC;
  904.     Behavior is cDefaultBehavior
  905.     has
  906.     with
  907.         Enabled is false; Shown is false; 
  908.         X is 168; Y is 0; Width is 472; Height is 425;
  909.     end;
  910. end;
  911.  
  912.